home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / util / moni / Scout-src.lha / source / scout.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-09-17  |  2.4 KB  |  101 lines

  1. /**
  2.  * Scout - The Amiga System Monitor
  3.  *
  4.  *------------------------------------------------------------------
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  * You must not use this source code to gain profit of any kind!
  21.  *
  22.  *------------------------------------------------------------------
  23.  *
  24.  * @author Andreas Gelhausen
  25.  * @author Richard Körber <rkoerber@gmx.de>
  26.  */
  27.  
  28.  
  29. /* Prototypes for functions defined in
  30. scout.c
  31.  */
  32.  
  33. extern struct Library * MUIMasterBase;
  34.  
  35. extern struct Task * myprocess;
  36.  
  37. extern struct MsgPort * myarexxport;
  38.  
  39. extern struct MsgPort *ScoutPort;
  40.  
  41. extern struct IOStdReq *InputIORequest;
  42.  
  43. extern BOOL input;
  44.  
  45. extern BOOL timer2;
  46.  
  47. extern BOOL timer_ticking;
  48.  
  49. extern struct timerequest *TimerIORequest;
  50.  
  51. extern BYTE TimerSignal;
  52.  
  53. extern char * portname;
  54.  
  55. extern APTR AP_Scout;
  56.  
  57. extern APTR WI_Main;
  58.  
  59. extern BPTR printfile;
  60.  
  61. extern BPTR prevdir;
  62.  
  63. extern UBYTE *AllocationsText;
  64. extern UBYTE *AssignsText;
  65. extern UBYTE *ClassesText;
  66. extern UBYTE *CommandsText;
  67. extern UBYTE *CommoditiesText;
  68. extern UBYTE *DevicesText;
  69. extern UBYTE *ExpansionsText;
  70. extern UBYTE *FontsText;
  71. extern UBYTE *InputHandlersText;
  72. extern UBYTE *InterruptsText;
  73. extern UBYTE *LibrariesText;
  74. extern UBYTE *LocksText;
  75. extern UBYTE *LowMemoryText;
  76. extern UBYTE *MemoryText;
  77. extern UBYTE *MountText;
  78. extern UBYTE *PortsText;
  79. extern UBYTE *ResidentsText;
  80. extern UBYTE *ResourcesText;
  81. extern UBYTE *ScreenModeText;
  82. extern UBYTE *SemaphoresText;
  83. extern UBYTE *SystemText;
  84. extern UBYTE *TasksText;
  85. extern UBYTE *TimerText;
  86. extern UBYTE *VectorsText;
  87. extern UBYTE *WindowsText;
  88. extern UBYTE *PatchesText;
  89. extern UBYTE *CatalogsText;
  90. extern UBYTE *AudioModesText;
  91. extern UBYTE *ResetHandlersText;
  92.  
  93. extern APTR globalPool;
  94.  
  95. extern STRPTR decimalSeparator;
  96.  
  97. ULONG scout_main( void );
  98.  
  99. extern void kprintf(const char *,...);
  100.  
  101.